#!/bin/bash

# The full path to the installation package; for example: /Volumes/Record/Additional Video Tutorials.pkg.
InstallationPackagePath="$1"

# The full path to the installation destination; for example: /Applications/Record.
DestinationDir="$2"

# Both this postflight script and the VideoTutorialInstallHelper are in the Resources subdir of the installer package.
"${InstallationPackagePath}/Contents/Resources/VideoTutorialInstallHelper" --applicationDir="${DestinationDir}"
